c3fc08e3fe8ed6f235c6fb8a4ca8b1de3973a140,ee/src/main/java/org/jboss/as/ee/concurrent/DefaultContextSetupProviderImpl.java,DefaultContextSetupProviderImpl,setup,#org.glassfish.enterprise.concurrent.spi.ContextHandle#,56

Before Change



    @Override
    public org.glassfish.enterprise.concurrent.spi.ContextHandle setup(org.glassfish.enterprise.concurrent.spi.ContextHandle contextHandle) throws IllegalStateException {
        ((ContextHandle) contextHandle).setup();
        return contextHandle;
    }

After Change



    @Override
    public org.glassfish.enterprise.concurrent.spi.ContextHandle setup(org.glassfish.enterprise.concurrent.spi.ContextHandle contextHandle) throws IllegalStateException {
        return ((SetupContextHandle) contextHandle).setup();
    }

    @Override